home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PASROTO.ZIP / MAKEFILE < prev    next >
Text File  |  1996-05-23  |  640b  |  27 lines

  1. copt = /5r /fp5 /7 /fpi87 /oneatmiler /s /d2
  2. aopt = /ml /m5  /zd
  3. lopt = debug all
  4. copt = /5r /fp5 /7 /fpi87 /oneatmiler /s
  5. aopt = /ml /m5
  6. lopt =
  7.  
  8. exefile = roto
  9. objects = roto.obj timer.obj rotoexam.obj
  10.  
  11. $(exefile).exe: $(objects) $(exefile).lnk
  12.   *wlink $(lopt) @$^*.lnk
  13.  
  14. $(exefile).lnk: makefile
  15.   @%create $^*.lnk
  16.   @%append $^*.lnk system dos4g
  17.   @%append $^*.lnk name $^*.exe
  18.   @%append $^*.lnk file {$(objects)}
  19.   @%append $^*.lnk option modname='cacheoptimized rotozoomer'
  20.   @%append $^*.lnk option description '(c) 1996 Niklas Beisert / pascal'
  21.  
  22. .cpp.obj:
  23.   *wpp386 $(copt) $<
  24.  
  25. .asm.obj:
  26.   tasm $(aopt) $<
  27.